From 916d33f787fb0935a07257fc11bcbb3ddfa6eb08 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 16 Oct 2014 18:44:12 +0100 Subject: [PATCH] libxl: Fix a couple of log messages to print correct errnos xc_domain_create and xc_cpupool_movedomain do not return errno values; they return -1 and set errno. Fix the logging accordingly. Signed-off-by: Ian Jackson Reviewed-by: Don Slutz Acked-by: Wei Liu Acked-by: Ian Campbell --- tools/libxl/libxl_create.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/libxl/libxl_create.c b/tools/libxl/libxl_create.c index 8b825849d1..8ae9701707 100644 --- a/tools/libxl/libxl_create.c +++ b/tools/libxl/libxl_create.c @@ -515,14 +515,14 @@ int libxl__domain_make(libxl__gc *gc, libxl_domain_create_info *info, ret = xc_domain_create(ctx->xch, info->ssidref, handle, flags, domid); if (ret < 0) { - LIBXL__LOG_ERRNOVAL(ctx, LIBXL__LOG_ERROR, ret, "domain creation fail"); + LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "domain creation fail"); rc = ERROR_FAIL; goto out; } ret = xc_cpupool_movedomain(ctx->xch, info->poolid, *domid); if (ret < 0) { - LIBXL__LOG_ERRNOVAL(ctx, LIBXL__LOG_ERROR, ret, "domain move fail"); + LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "domain move fail"); rc = ERROR_FAIL; goto out; } -- 2.30.2